home *** CD-ROM | disk | FTP | other *** search
-
-
- (complete 0)
-
- (set prg-version "2.8")
-
- (set destfonts "fonts:")
-
- (set #intro
- (cat " Welcome to the installation of PlayGUI "prg-version". This script will copy all necessary files of the PlayGUI archive to your HD."))
-
- (set #extro
- (cat "The installation of PlayGUI "prg-Version" is finished! Please read the GUIDE !!! "))
-
- (set #select_Hadir_help
- (cat "Choose the dir for PlayGUI here or make a directory first."
- ))
-
- (message #intro)
-
- (complete 10)
-
- (set destdir
- (askdir
- (prompt "Where do you want to install PlayGUI?\nNo directory will be created!")
- (help #select_hadir_help)
- (default "PlayGUI:")))
-
- (complete 20)
-
- (copyfiles
- (source "")
- (dest destdir)
- (all))
-
- (copyfiles
- (source "fonts")
- (dest destfonts)
- (all))
-
- (complete 100)
- (message #extro)
-